home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 22 / Amiga Format AFCD22 (Jan 1998, Issue 106).iso / -in_the_mag- / netbsd / .profile < prev    next >
Text File  |  1997-11-21  |  421b  |  27 lines

  1. #configuration file for bash (and ksh)
  2.  
  3. #set the terminal type
  4. tset vt220
  5.  
  6. #set the path
  7. PATH=.:/bin:/usr/bin:/usr/local/X11R6.1/bin:/usr/local/bin
  8. export PATH
  9.  
  10. #set other environment variables
  11. TAPE=/dev/nrst0
  12. export TAPE
  13. ORACLE_HOME=/oracle
  14. export ORACLE_HOME
  15.  
  16. #define some aliases
  17.  
  18. alias df '/bin/df -k '
  19. alias local 'cd /local'
  20. alias windows 'startx'
  21. alias copy 'cp'
  22. alias dir 'ls'
  23. alias move 'mv'
  24. alias delete 'rm'
  25.  
  26.  
  27.